e457e2f0ebd3b4a67711b6e3c2572ae12485c723,langtools/src/share/classes/com/sun/tools/javac/tree/Pretty.java,Pretty,visitAnnotation,#JCAnnotation#,1204

Before Change


            print("@");
            printExpr(tree.annotationType);
            print("(");
            printExprs(tree.args);
            print(")");
        } catch (IOException e) {
            throw new UncheckedIOException(e);

After Change


        try {
            print("@");
            printExpr(tree.annotationType);
            if (tree.args != null) {
	            print("(");
	            printExprs(tree.args);
	            print(")");
            }
        } catch (IOException e) {